home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #3 / Amiga Plus CD - 2002 - No. 03.iso / AmigaPlus / AmigaOS / Aplus_Dev / AP-Website / links / include / config.php < prev    next >
Encoding:
PHP Script  |  2002-10-28  |  1.7 KB  |  55 lines

  1. <?
  2. // *******************************************************************
  3. //  include/config.php
  4. // *******************************************************************
  5.  
  6. // *******************************************************************
  7. //  MySQL Connection Information
  8. // *******************************************************************
  9.  
  10. // MySQL server hostname
  11.     $dbhost        =    "db96.puretec.de";
  12.  
  13. // MySQL server username
  14.     $dbuser        =    "p8198083";
  15.  
  16. // MySQL server password
  17.     $dbpasswd    =    "asczAdHV";
  18.  
  19. // MySQL database name
  20.     $dbname        =    "db66143785";
  21.  
  22. // *******************************************************************
  23. //  phpLinks Language
  24. // *******************************************************************
  25.  
  26.     $language    =    "german";
  27.  
  28. // *******************************************************************
  29. //  MySQL Table Names
  30. // *******************************************************************
  31.  
  32.     $tb_categories    =    "categories";
  33.     $tb_links                =    "links";
  34.     $tb_settings        =    "settings";
  35.     $tb_temp            =    "temp";
  36.     $tb_related            =    "related";
  37.     $tb_terms            =    "terms";
  38.     $tb_reviews        =    "reviews";
  39.     $tb_specs            =    "specs";
  40.     $tb_sessions        =    "sessions";
  41.  
  42. // *******************************************************************
  43. //    Other Settings
  44. //    These will be moved into the 'settings db' on major releases
  45. // *******************************************************************
  46.  
  47.     // These are default values you can set to prefill the blanks
  48.     // when you manually add a site from admin.  Can be blank as well.
  49.     $prefill_email        =    "user@email.com";
  50.     $prefill_username    =    "username";
  51.     $prefill_password    =    "password";
  52.     $prefill_hint            =    "hint";
  53.  
  54. ?>
  55.